func strconv.toError

7 uses

	strconv (current package)
		number.go#L22: 		return x, toError("ParseBool", str, 0, 0, err)
		number.go#L61: 		return x, toError("ParseComplex", s, 0, bitSize, err)
		number.go#L96: 		return x, toError("ParseFloat", s, 0, bitSize, err)
		number.go#L107: 		return x, toError("ParseUint", s, base, bitSize, err)
		number.go#L140: 		return x, toError("ParseInt", s, base, bitSize, err)
		number.go#L149: 		return x, toError("Atoi", s, 0, 0, err)
		number.go#L231: func toError(fn, s string, base, bitSize int, err error) error {